home *** CD-ROM | disk | FTP | other *** search
/ Amiga Tools 5 / Amiga Tools 5.iso / tools / system-tools / tinymeter / source / tinymeter_main / launchclass.h < prev    next >
Encoding:
C/C++ Source or Header  |  1996-03-21  |  1.7 KB  |  61 lines

  1. #include <utility/tagitem.h>
  2.  
  3. #define lau_up                  0
  4. #define lau_down                1
  5. #define lau_over                2
  6.  
  7. #define lind_realcenter         0
  8. #define lind_center             1
  9. #define lind_left               2
  10. #define lind_right              3
  11.  
  12. #define LAU_TextFont            (TAG_USER + 22 )
  13. #define LAU_TextFormat          (TAG_USER + 23 )
  14. #define LAU_Label               (TAG_USER + 24 )
  15. #define LAU_File                (TAG_USER + 25 )
  16.  
  17. #define LAU_3D                  (TAG_USER + 26)
  18. #define LAU_Border              (TAG_USER + 27)
  19. #define LAU_Background          (TAG_USER + 28)
  20. #define LAU_ShadowLabel         (TAG_USER + 29)
  21.  
  22. #define LAU_List                (TAG_USER + 30)
  23. #define LAU_Down                (TAG_USER + 31)
  24.  
  25. #define LAU_ColLabel            (TAG_USER + 32)
  26. #define LAU_ColEntry            (TAG_USER + 33)
  27. #define LAU_ColHalfBright       (TAG_USER + 34)
  28. #define LAU_ColHalfShadow       (TAG_USER + 35)
  29. #define LAU_ColCursor           (TAG_USER + 36)
  30. #define LAU_ColBrightEdg        (TAG_USER + 37)
  31. #define LAU_ColDarkEdg          (TAG_USER + 38)
  32. #define LAU_ColBackground       (TAG_USER + 39)
  33.  
  34. #define LAU_Screen              (TAG_USER + 40)
  35. #define LAU_Indent              (TAG_USER + 41)
  36.  
  37. #define LAU_UsedColors  8
  38.  
  39. struct  LAU_Color
  40. {
  41.     UWORD   pen;
  42.     ULONG   red;
  43.     ULONG   green;
  44.     ULONG   blue;
  45. };
  46.  
  47. struct lau_entry
  48. {
  49.     struct lau_entry   *next;
  50.     char               *lau_lbl;
  51.     char               *lau_cmd;
  52.     char               *lau_pth;
  53.     char               *lau_out;
  54.     UWORD               lau_type;
  55.     ULONG               lau_stack;
  56.     UWORD               width;
  57.     UWORD               height;
  58.     Object             *img;
  59. };
  60.  
  61.